Implement. Just return FALSE for now. What should this function actually
authorTor Lillqvist <tml@novell.com>
Tue, 3 Jul 2007 16:53:17 +0000 (16:53 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Tue, 3 Jul 2007 16:53:17 +0000 (16:53 +0000)
2007-07-03  Tor Lillqvist  <tml@novell.com>

* gdk/win32/gdkkeys-win32.c (gdk_keymap_have_bidi_layouts):
Implement. Just return FALSE for now. What should this function
actually do? Does keyboards layouts being "in use" mean that such
layouts can be switched to on the fly? If so we need to actually
check that.

svn path=/trunk/; revision=18359

ChangeLog
gdk/win32/gdkkeys-win32.c

index 5d1d5e4590140f1f07354588fcf3b19134142c69..6317e82211d5e230744680e91bae65c3bd663d2c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2007-07-03  Tor Lillqvist  <tml@novell.com>
+
+       * gdk/win32/gdkkeys-win32.c (gdk_keymap_have_bidi_layouts):
+       Implement. Just return FALSE for now. What should this function
+       actually do? Does keyboards layouts being "in use" mean that such
+       layouts can be switched to on the fly? If so we need to actually
+       check that.
+
 2007-07-03  Tristan Van Berkom  <tvb@gnome.org>
 
        * gtk/gtkwidget.c: Fixed assertions from setting "tooltip-text" to NULL
index 6bb11054fc367e665186659e86bd07cc3bdc73bc..f2bdae970ec3431834baa540752422f73762d4be 100644 (file)
@@ -526,6 +526,16 @@ gdk_keymap_get_direction (GdkKeymap *keymap)
     }
 }
 
+gboolean
+gdk_keymap_have_bidi_layouts (GdkKeymap *keymap)
+{
+  /* Should we check if the kayboard layouts switchable at the moment
+   * cover both directionalities? What does the doc comment in
+   * ../x11/gdkkeys-x11.c exactly mean?
+   */
+  return FALSE;
+}
+
 gboolean
 gdk_keymap_get_entries_for_keyval (GdkKeymap     *keymap,
                                    guint          keyval,